home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000300_news@columbia.edu _Tue Jun 25 13:15:56 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id NAA06600 for <kermit.misc@watsun.cc.columbia.edu>; Tue, 25 Jun 1996 13:15:56 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id NAA09053 for kermit.misc@watsun; Tue, 25 Jun 1996 13:15:54 -0400 (EDT)
  4. Path: news.columbia.edu!lamont.ldeo.columbia.edu!zombie.ncsc.mil!news.mathworks.com!newsfeed.internetmci.com!news.sprintlink.net!news-stk-200.sprintlink.net!news.sprintlink.net!news-stk-11.sprintlink.net!connix.com!news
  5. From: Jim Jablonski <jjablons@connix.com>
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Automate File Send then Receive
  8. Date: 25 Jun 1996 15:49:24 GMT
  9. Organization: Town of Enfield, CT IS Dept.
  10. Lines: 45
  11. Message-ID: <4qp1q4$jgk@comet.connix.com>
  12. NNTP-Posting-Host: jjablons.connix.com
  13. Mime-Version: 1.0
  14. Content-Type: text/plain; charset=us-ascii
  15. Content-Transfer-Encoding: 7bit
  16. X-Mailer: Mozilla 1.1PE (Windows; I; 16bit)
  17.  
  18. Greetings,
  19.  
  20. I am working on a project that requires us to dial out to a vendor,
  21. then send a text file that tells the remote site who we are, then 
  22. the remote site sends us a text file.  I would like to automate this
  23. process using C-kermit on a DEC Alpha 3600 running OpenVMS 6.1.
  24.  
  25. I have been able to get as far as C-kermit dialing and connecting to
  26. the remote site.  I get hung up at the remote site login sequence.
  27. I have been trying to use the INPUT and OUTPUT commands to accomplish
  28. this.  The example in the book uses a single word (login:) after the
  29. INPUT command.  The site I am logging into has for a login prompt.
  30. "Enter logon id:".  My question is, can I use the INPUT command to 
  31. process this prompt?  I have tried using quotes("") around the 
  32. login prompt, experimented with different times from 5-35 sec. of
  33. waiting for the prompt without success.
  34.  
  35. I start C-kermit with the -y command line qualifier and a setup file
  36. as follows; Ckermit -y filename.set. The commands in Filename.set are;
  37.  
  38. set carrier off
  39. set modem hayes
  40. set line lta415
  41. set speed 2400
  42. set terminal bytesize 8
  43. set flow none
  44. dial 9,1xxxxxxxxxx
  45. connect
  46. input 15 Enter logon id:
  47. output 10 my_login
  48. input 15 Enter password:
  49. output 10 my_password
  50. ^\C         ! I'm hoping this will get me back to my C-kermit to send 
  51. send file.txt
  52. recieve 
  53.  
  54. Am doing this right? Will the ^\C get me back to my machine?  Any 
  55. suggestions will be appreciated.
  56.  
  57.  
  58.                             TIA,
  59.  
  60.                             Jim
  61.  
  62.